-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: BOJ 2630 색종이 만들기 #37
Open
Parkjju
wants to merge
28
commits into
hufslion10th:main
Choose a base branch
from
Parkjju:2630
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…rs generate, 최신데이터 반영
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
BOJ 2630 색종이 만들기
로직 개요
Node.js / 링크 / 백준 / 재귀, 분할정복
이전 문제로 올렸던 BOJ 1780 풀이가 도움이 됐네요. 두 문제 고민해서 풀어보니 분할정복이 대충 어떤 느낌인지 알 것 같습니다!
원본 배열이 주어지고 그 안에서 조각을 쪼개가며 원하는 값을 도출해내는 과정이 필요합니다.
1780에서는 각 변이 3의 제곱으로 이루어지는 정사각형으로 풀이했다면
2630에서는 2의 제곱으로 이루어지는 정사각형으로 풀이하기 때문에 마지막 for 루프에서 네 조각으로 쪼개진 정사각형 네개를 재귀적으로 탐색하면 됩니다.
재귀함수 파라미터인 x,y는 시작지점이고
line은 사각형의 변의 길이입니다.
전역변수로 선언된 원본 배열이 있고 x
x+line까지, yy+line까지 각각 순회하며 현재 돌고 있는 사각형이 모두 같은 값으로 이루어져 있는지 검사합니다. 만약 다른 값이 현재 사각형에 있다면 그 즉시 순회를 멈추고 사각형을 네 조각으로 쪼갭니다.해당 로직이 아래 코드입니다.
네 조각으로 쪼개지기 때문에 네번만 고정적으로 순회하면 됩니다.
결과
BOJ 1780에서 고민을 많이 해보고 풀이하니 2630에서는 풀이 없이 잘 해결할 수 있었습니다 💯